@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
} */
nav {
  position: relative;
  z-index: 99;
  width: 100%;
  background: #f6f2ed;
}

nav .wrappery {
  position: relative;
  max-width: 1300px;
  padding: 0px -9px;
  height: 115px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrappery .logoy a {
  color: white;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrappery .nav-linksy {
  display: inline-flex;
}

.nav-linksy li {
  list-style: none;
}

.nav-linksy li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-linksy li a:hover {
  color: #356ab4;
  /* background: #3a3b3c; */
}

.nav-linksy .mobile-itemy {
  display: none;
}

.nav-linksy .drop-menuy {
  position: absolute;
  background: #242526;
  width: 150px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-linksy li:hover .drop-menuy,
.nav-linksy li:hover .mega-boxy {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menuy li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-boxy {
  position: absolute;
  left: 100px;
  width: 90%;
  padding: 0 15px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
}

.mega-boxy .contenty {
  background: #242526;
  padding: 15px 10px;
  display: flex;
  width: 100%;

  justify-content: space-around;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-boxy .contenty .rowy {
  width: calc(25% - 30px);
  line-height: 45px;
}

.contenty .rowy {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contenty .rowy header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.contenty .rowy .mega-linksy {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.rowy .mega-linksy li {
  padding: 0 0 0 20px;
}

.rowy .mega-linksy li a {
  padding: 0 0 0 20px;
  color: #d9d9d9;
  font-size: 14px;
  display: block;
}

.rowy .mega-linksy li a:hover {
  color: #356ab4;
}

.mobile-nav-links li a:hover {
  color: #356ab4;
}

.mobile-nav-links li a {
  color: white;
}

.wrappery .btny {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrappery .btny.close-btny {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrappery .btny {
    display: block;
  }

  .wrappery .nav-linksy {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }

  #menu-btny:checked~.nav-linksy {
    left: 0%;
  }

  #menu-btny:checked~.btn.menu-btny {
    display: none;
  }

  #close-btny:checked~.btny.menu-btny {
    display: block;
  }

  .nav-linksy li {
    margin: 15px 10px;
  }

  .nav-linksy li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-linksy .drop-menuy {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDropy:checked~.drop-menuy,
  #showMegay:checked~.mega-boxy {
    max-height: 100%;
  }

  .nav-linksy .desktop-itemy {
    display: none;
  }

  .nav-linksy .mobile-itemy {
    display: block;
    color: blue;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-linksy .mobile-itemy:hover {
    /* background: #3a3b3c; */
    color: blue;
  }

  .myHover:hover {
    color: blue;
  }

  .drop-menuy li {
    margin: 0;
  }

  .drop-menuy li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-boxy {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-boxy .contenty {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-boxy .contenty .rowy {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-boxy .contenty .rowy:nth-child(1),
  .mega-boxy .contenty .rowy:nth-child(2) {
    border-top: 0px;
  }

  .contenty .rowy .mega-linksy {
    border-left: 0px;
    padding-left: 15px;
  }

  .rowy .mega-linksy li {
    margin: 0;
  }

  .contenty .rowy header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-texty {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-texty div {
  font-size: 45px;
  font-weight: 600;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;

  background-color: #356ab4;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 160px;
  padding: 5px;
  margin: 3px;
  border-radius: 8px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  padding: 4px 0;
  white-space: nowrap;
}

.dropdown-item li a:hover {
  color: blue;
}

/* service page css */
.page1-box2 {
  margin: 20px;
  padding: 5px;
}

.page1-box2 h1 {
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 550;
}

.page1-box2 p {
  text-align: left;
  font-size: 20px;
}

.page1-box2 a {
  background-color: #086ad8;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  border-radius: 12px;
  padding: 18px 40px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  width: max-content;
}

.page2-box1-minibox2-icon img {
  height: 100%;
  display: flex;
  padding: 8px;
  margin-top: 30px;
}

.Css-img {
  width: 50px;
}

.page3 h4 {
  text-align: left;
}

.page3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page3 h2 {
  font-size: 6vh;
}

.page3 h4 {
  font-size: 20px;
}

.span-1 {
  color: #086ad8;
}

.page5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
}

.page5 h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.page6-box2-minibox {
  width: 28%;
  height: 140px;
  border-radius: 30px;
  text-align: center;
  display: flex;
  align-items: center;
}

.page6-box2-minibox img {
  width: 90px;
  height: 95px;
  padding: 10px;
  margin: 10px;
}